home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / include / lib / misc.h < prev    next >
C/C++ Source or Header  |  1994-02-01  |  2KB  |  54 lines

  1.  
  2. /*
  3.  * $VER: lib/misc.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  *
  7.  *  miscellanious prototypes for internal c.lib functions
  8.  */
  9.  
  10. #ifndef _LIB_MISC_H
  11. #define _LIB_MISC_H
  12. #ifndef _STDARG_H
  13. #include <stdarg.h>
  14. #endif
  15. #ifndef _STDIO_H
  16. #include <stdio.h>
  17. #endif
  18.  
  19. long rega4(void);
  20. #define geta4()  rega4();
  21. void __closeall(void);
  22. void _finitdesc(FILE *, int, int);
  23. int _parseargs1(char *, int);
  24. void _parseargs2(char *, char **, int);
  25. long _SearchResident(char *);
  26. long _SearchPath(char *);
  27. __stkargs long _ExecSeg(long, char *, long, void *);
  28. int exec_dcc(char *, char *);
  29. int _pfmt(char *, va_list, unsigned int (*)(char *, size_t, size_t, void *), void *);
  30. int _pfmtone(char, va_list *, unsigned int (*)(char *, size_t, size_t, void *), void *, short, short, short, int);
  31. int _sfmt(unsigned char *, va_list, int (*)(void *), int (*)(int, void *), void *, int *);
  32. int _sfmtone(char *, short *, void *, int (*)(void *), void *, short, short, short);
  33. int __fclose(FILE *);
  34. int _filbuf(FILE *);
  35. void _MakeCacheFD(_IOFDS *, void *, long);
  36. long _CacheFDIoctl(long, int, void *, void *);
  37. short OpenConsole(const char *);
  38.  
  39. __stkargs _slow_bcopy(void *, void *, long);
  40. __stkargs _slow_bzero(void *, long);
  41. __stkargs _slow_bset(void *, long, int);
  42.  
  43. #ifndef _EXTRA_WILDCARD_C
  44. void _SetWildStack(long);
  45. void *_ParseWild(const char *, short);
  46. int _CompWild(const char *, void *, void *);
  47. void _FreeWild(void *);
  48. #endif
  49.  
  50. extern long _TimeCompensation;
  51. extern int _DiceCacheEnable;
  52.  
  53. #endif
  54.